Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

291
Views
Cuando intento insertar una fuente personalizada en Expo usando AppLoading, aparece el error de sintaxis "Ninguno de estos archivos existe"

Estoy tratando de insertar una fuente personalizada en React Native Expo. Estoy usando el método AppLoading. Por alguna razón, aparece un mensaje de error que dice "Ninguno de estos archivos existe". ingrese la descripción de la imagen aquí ingrese la descripción de la imagen aquí

... aunque el archivo claramente existe en el directorio de archivos: ingrese la descripción de la imagen aquí

Mi versión de Expo es 5.4.0. He buscado preguntas similares, pero no involucran fuentes o usan fuentes Async en lugar de AppLoading.

Este es mi código completo a continuación.

 import 'react-native-gesture-handler'; import React from 'react'; import { createStackNavigator } from '@react-navigation/stack'; import { NavigationContainer } from '@react-navigation/native'; import HomeScreen from './src/screens/HomeScreen'; import { StatusBar } from 'expo-status-bar'; import { StyleSheet, Text, View } from 'react-native'; import AppLoading from 'expo-app-loading'; import { useFonts } from 'expo-font'; import { Font } from 'expo'; const Stack = createStackNavigator(); export default function App() { let [fontsLoaded] = useFonts({ 'SEGOEUI': require('./assets/fonts/SEGOEUI.TTF'), }); if (!fontsLoaded) { return <AppLoading />; } return ( <NavigationContainer> <Stack.Navigator initialRouteName="Home" screenOptions={{ headerShown: false }}> <Stack.Screen name="Home" component={HomeScreen} /> </Stack.Navigator> </NavigationContainer> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, });
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!